home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-13 | 316 b | 22 lines | [TEXT/ttxt] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class LINK2_LIST_BENCH
-
- inherit BENCH;
-
- creation make
-
- feature
-
- make is
- local
- link2_list: LINK2_LIST[INTEGER];
- do
- !!link2_list.make;
- bench(link2_list);
- end;
-
- end
-
-